home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c3 / pro24 / traspace.c < prev    next >
Text File  |  1986-06-26  |  415b  |  12 lines

  1. /* recspace.c -- free space initialization module for transcribe program */
  2.  
  3. /* this file defines the maximum allocatable storage in bytes */
  4. /* the number must be determined emperically because it depends upon  */
  5. /* the amount of storage that must be left around for io etc. */
  6.  
  7. /* this should leave about 2KB free */
  8. #define MAXSPACE 55000
  9.  
  10. /* export the free space counter */
  11. long space = MAXSPACE;
  12.